c552a1efff709c4d8f267b103d3b0dd86c570b45,portal-service/src/com/liferay/portlet/social/model/BaseSocialActivityInterpreter.java,BaseSocialActivityInterpreter,getGroupName,#number#ThemeDisplay#,68

Before Change



			Group group = GroupLocalServiceUtil.getGroup(groupId);

			String groupName = HtmlUtil.escape(group.getDescriptiveName());

			if (group.getGroupId() == themeDisplay.getScopeGroupId()) {
				return groupName;

After Change



			Group group = GroupLocalServiceUtil.getGroup(groupId);

			String groupName = group.getDescriptiveName();

			if (group.getGroupId() == themeDisplay.getScopeGroupId()) {
				return groupName;